home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Tampa Bay Amiga Group / TBAG - Tampa Bay Amiga Group's Disk of the Month #52 (1991)(Merlin's Software - Amiganuts United)(PD).zip / TBAG - Tampa Bay Amiga Group's Disk of the Month #52 (1991)(Merlin's Software - Amiganuts United)(PD).adf / Utilities / FullView.docs < prev    next >
Text File  |  1991-02-19  |  5KB  |  134 lines

  1. /*****************************************************************************
  2.  *                                                                           *
  3.  *                                 FullView                                  *
  4.  *                                                                           *
  5.  *                 © Copyright 1989,1990 by Jonathan Potter                  *
  6.  *                                                                           *
  7.  *****************************************************************************/
  8.  
  9.                 -- See the bottom of this file for changes --
  10.  
  11.                                 FullView v1.1
  12.  
  13. FullView is a text viewer, with one basic difference to all other text viewers
  14. I have seen - the up/down gadgets are at the bottom of the screen, instead of
  15. on the side of the screen. This means that you get the full 80 columns across,
  16. instead of only 78. FullView will also open up to the height of the Workbench
  17. screen, meaning you get the maximum possible screen size.
  18.  
  19. To start FullView, type from the CLI
  20.  
  21.   FullView filename
  22.  
  23. or from the Workbench, doubleclick on a project icon that has FullView as its
  24. default tool.
  25.  
  26. FullView consists of a hi-res screen, 3 gadgets and 2 menus. The gadgets are
  27. at the bottom of the screen. The up and down arrows move you in that direction
  28. through the text. The status bar between the two arrows tells you your
  29. current posisition in the file. The close gadget at the top provides a way to
  30. exit the program.
  31.  
  32. The first menu, Project, contains the following options :
  33.  
  34.   [NB A-xx means RIGHT-AMIGA + xx]
  35.  
  36.   Load     (A-L) - allows you to load a new text file from within FullView.
  37.   Save     (A-S) - allows you to save the current file as straight ASCII text.
  38.   Print
  39.     Screen (A-C) - allows you to send the screen as ASCII text to the printer.
  40.     All    (A-P) - allows you to send the whole text file to the printer.
  41.   Search   (A-E) - allows you to search for a specified text string in the
  42.                    text.
  43.   Scroll   (1-4) - allows you to change the scroll speed, 1 being the slowest,
  44.                    and 4 the fastest.
  45.   About    (A-A) - Displays a requester giving short program info.
  46.   Iconify  (A-I) - Iconifies FullView to a small window on the Workbench
  47.                    screen.
  48.   Quit    ESC, Q - exits FullView.
  49.  
  50. The second menu, Move, contains the following options :
  51.  
  52.   Top       (A-T) - Move to the top of the current text
  53.   Bottom    (A-B) - Move to the bottom of the current text
  54.   Page Up   (A-U) - Move one page upwards
  55.   Page Down (A-D) - Move one page downwards
  56.  
  57. The following keys may be used in FullView :
  58.  
  59.   Up Arrow
  60.   Left Arrow
  61.                - Move one line up
  62.                  With SHIFT, move one page up
  63.                  With CTRL, move to top of file
  64.  
  65.   Down Arrow
  66.   Right Arrow  - Move one line down
  67.                  With SHIFT, move one page down
  68.                  With CTRL, move to bottom of file
  69.  
  70.   ESC, Q       - Quit
  71.   1-4          - Change scroll speed
  72.   SPACE        - Start/stop forwards scrolling (also left mouse button)
  73.   BACKSPACE    - Start/stop reverse scrolling (also right mouse button)
  74.  
  75. FullView also allows you to load files compressed with the FVCompress
  76. program accompanying FullView. The compression generally yields between
  77. a 30% and 50% reduction in size.
  78.  
  79. ------------------------------------------------------------------------------
  80.  
  81.                                  FullView 2.0
  82.  
  83. Major changes to FullView in v2.0 are :
  84.  
  85. a) Use of the ARP library. The results in a better file requester, slightly
  86.    smaller executable size, and full wildcard support in searching.
  87. b) Loading and Saving are much faster.
  88. c) The old FullView compression routines (Huffman) have been replaced by
  89.    the PowerPacker decrunch routines. PowerPacker gives better compression,
  90.    and the decrunching is much faster.
  91. d) FullView now opens to the full width of the Workbench screen, as well as
  92.    the height.
  93. e) Scroll speed has been removed from the menu. The scroll speed and
  94.    direction are based on the vertical position of the mouse pointer.
  95.  
  96. ------------------------------------------------------------------------------
  97.  
  98.                                 FullView 2.01
  99.  
  100. Major changes to FullView in v2.01 are :
  101.  
  102. a) Don't use ARP anymore.
  103. b) Wildcards no longer supported in searches.
  104. c) Shows IFF files either from within FullView or from CLI/Workbench.
  105.    From Workbench, set picture's ToolTypes to read FILETYPE=ILBM.
  106.    From CLI, enter +p after filename. Eg, 
  107.  
  108.             FullView picture.pic +p
  109.  
  110.    Press TAB to turn cycling on or off. PowerPacker-crunched IFF files can
  111.    also be shown.
  112.  
  113. ------------------------------------------------------------------------------
  114.  
  115.                                 FullView 2.02
  116.  
  117. A few bugs fixed. IFF viewer now much better. Slowest scrolling speed is
  118. slow enough to read comfortably.
  119.  
  120. ------------------------------------------------------------------------------
  121.  
  122. FullView is freely redistributable, but is not Public Domain.
  123. If you use FullView, please give credit where credit is due, and
  124. if FullView is used on a Commercial product, please send a $20 donation to the
  125. author.
  126.  
  127.                                  Jonathan Potter
  128.                                  P.O. Box 289
  129.                                  Goodwood, SA 5034
  130.                                  Australia
  131.                             ph : (08) 293 2788
  132.  
  133. ------------------------------------------------------------------------------
  134.